home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / aaapcp31.zip / AINSTALL.BAT < prev    next >
DOS Batch File  |  1988-11-13  |  2KB  |  59 lines

  1. echo off
  2. cls
  3. echo Batch File to Install AAAPCP+ onto Hard Disk              By Flurb.
  4. echo -------------------------------------------------------------------
  5. echo .
  6. echo   This batch file is designed to install the AAAPCP+ package
  7. echo to your hard disk:
  8. echo .
  9. echo     1.  Copy AAAPCP.ASP  into PCPLUS Directory.
  10. echo     2.  Copy AAAPCP.KEY  into PCPLUS Directory.
  11. echo     3.  Copy ACONFIG.COM into PCPLUS Directory.
  12. echo     4.  Inform of the next logical step:  ACONFIG.
  13. echo .
  14. IF %1X == X GOTO NOPARM
  15. IF NOT EXIST AAAPCP.ASP  GOTO FIMISS:
  16. IF NOT EXIST AAAPCP.KEY  GOTO FIMISS:
  17. IF NOT EXIST ACONFIG.COM GOTO FIMISS:
  18. PAUSE
  19. COPY AAAPCP.ASP %1
  20. COPY AAAPCP.KEY %1
  21. COPY ACONFIG.COM %1
  22. CLS
  23. echo Files Installed:  Installation Part Complete.
  24. echo .
  25. echo NEXT STEP:  ACONFIG
  26. echo   The next step is to use ACONFIG to configure the AAAPCP+ Aspect
  27. echo file to your PC-Pursuit ID, baud rate, and Telenet's access number.
  28. echo .
  29. echo 1.  Set the current path to the PCPLUS path that the files were
  30. echo     just copied to.
  31. echo 2.  Type ACONFIG and press ENTER.
  32. echo 3.  When asked, enter AAAPCP.ASP as the source      file.
  33. echo 4.  When asked, enter A.ASP      as the destination file.
  34. echo 5.  When asked, enter your PC-Pursuit ID & Password.
  35. echo 6.  When asked, enter your Telenet baud rate (300/1200/2400).
  36. echo 7.  When asked, enter your Telenet access number.
  37. echo .
  38. echo   After you ACONFIGure, you may use AAAPCP+ by issueing 
  39. echo ALT-F5 A <ENTER> from within PCPLUS, or PCPLUS/fa from DOS.  
  40. echo For more information, read the manual.
  41. echo .
  42. echo Hope you enjoy AAAPCP+,
  43. echo      The Flurb
  44. GOTO EXIT
  45.  
  46. :FIMISS
  47. echo ERROR:  AINSTALL called from within directory that does not contain
  48. echo         the files.  Switch to subdirectory with files, and try again.
  49. echo.
  50.  
  51. :NOPARM
  52. ECHO ERROR:    AINSTALL PARAMETER MISSING!
  53. echo USAGE:    From directory containing the above files type:
  54. echo           AINSTALL [drive:][\path][\path]
  55. echo           Where the parameter defines the directory for PCPLUS.
  56. echo Example:  AINSTALL C:\COMM\PCPLUS
  57.  
  58. :EXIT
  59.